比較運算子
說明:與其他值跟資料庫的值做比較,並返回布林值 (true 或 false)。在查詢中是非常常使用的,用於篩選和選擇符合特定條件的數據
小筆記:在使用比較運算子時,最好以資料型態相同的值來做比較
select *
from choose_dinner
where dinner != 'rice';
表示排除晚餐吃飯的選項
select *
from fruit_type
where fruit_type_name in ('apple' , 'banana');
表示從資料表fruit_type回傳特定的水果(apple,banana)
select*
from student_name
where last_name like 'S%';
表示會尋找姓氏開頭是s的學生名字
select*
from seven_letter_term
where term like '_er';
表示會尋找以er結尾的三個字母單字
待續~
下一章:一周回顧-複習&練習